home *** CD-ROM | disk | FTP | other *** search
/ Columbia Kermit / kermit.zip / newsgroups / misc.19970626-19970929 / 000241_news@newsmaster….columbia.edu _Tue Aug 26 19:06:31 1997.msg < prev    next >
Internet Message Format  |  2020-01-01  |  5KB

  1. Return-Path: <news@newsmaster.cc.columbia.edu>
  2. Received: from newsmaster.cc.columbia.edu (newsmaster.cc.columbia.edu [128.59.35.30])
  3.     by watsun.cc.columbia.edu (8.8.5/8.8.5) with ESMTP id TAA00454
  4.     for <kermit.misc@watsun.cc.columbia.edu>; Tue, 26 Aug 1997 19:06:31 -0400 (EDT)
  5. Received: (from news@localhost)
  6.     by newsmaster.cc.columbia.edu (8.8.5/8.8.5) id TAA17943
  7.     for kermit.misc@watsun; Tue, 26 Aug 1997 19:06:30 -0400 (EDT)
  8. Path: news.columbia.edu!watsun.cc.columbia.edu!fdc
  9. From: fdc@watsun.cc.columbia.edu (Frank da Cruz)
  10. Newsgroups: comp.protocols.kermit.misc,comp.unix.questions,comp.unix.admin,comp.unix.misc,comp.unix.ultrix,comp.unix.shell
  11. Subject: Re: Do not get connected at 33.6K
  12. Date: 26 Aug 1997 23:06:27 GMT
  13. Organization: Columbia University
  14. Lines: 65
  15. Message-ID: <5tvnhj$4rh$1@apakabar.cc.columbia.edu>
  16. References: <5tsn5b$o9q@newslink.runet.edu> <5tupoe$gra$1@apakabar.cc.columbia.edu> <5tv6kp$7n9@newslink.runet.edu>
  17. NNTP-Posting-Host: watsun.cc.columbia.edu
  18. Xref: news.columbia.edu comp.protocols.kermit.misc:7557 comp.unix.questions:116021 comp.unix.admin:70178 comp.unix.misc:35260 comp.unix.ultrix:31795 comp.unix.shell:54236
  19.  
  20. In article <5tv6kp$7n9@newslink.runet.edu>,
  21. I l y a <ibeloozePLEASE_REMOVE_THIS_TO_REPLY@runet.edu> wrote:
  22. : Frank da Cruz (fdc@watsun.cc.columbia.edu) wrote:
  23. : : You can only tell C-Kermit to set speeds that are supported by the
  24. : : underlying operating system.  33600 is not such a speed.  Use 38400 or
  25. : : 57600 or 76800 or 115200.  Read the "Using C-Kermit" manual about speed
  26. : : buffering, flow control, error correction, and compression -- the
  27. : : difference between modulation speed and interface speed, and their
  28. : : reconciliation, is a fundamental aspect of modern modem communications,
  29. :
  30. :   Thanks, it was exactly  what I was looking.  I  did not realize that  tty
  31. :   speed was not the same as modem speed.
  32. :
  33. See Appendix II, "A Condensed Guide to Serial Communications", pages 488-492.
  34. There are also other sections about this at appropriate places, e.g. "Speed
  35. and Flow Control in the Full Duplex Environment", pp.210-212.  Also look at
  36. "More About Communication Speeds" on page 60.
  37.  
  38. : : ... and is covered in depth in Appendix II of the manual:
  39. : : 
  40. : :   http://www.columbia.edu/kermit/ck60manual.html
  41. :   Thanks, but it is not a valid URL.at least lynx tells me so.
  42. :
  43. It's there, really.
  44.  
  45. :   I got connected at 38400 but now I
  46. :   have a   different problem -   the screen is  messed  up and  I have been
  47. :   trouble shooting it  by reseting TERM, cols,  rows variables but  nothing
  48. :   seems to work. elm, tin and other shell programs use only 30 lines or so,
  49. :   and even that is messed  up.  resize and  refresing (control-l) does  not
  50. :   help. I did not have this problem at slower speeds.
  51. :   
  52. Then it's probably a lack of effective flow control.  If you are using
  53. C-Kermit 6.0, and you give it a "set modem type xxx" command (where xxx is
  54. the kind of modem you have), and if it is a modern error-correcting, data-
  55. compressing, speed-buffering modem (as yours is), AND if your operating
  56. systems supports it, then C-Kermit automatically sets the serial port driver
  57. for RTS/CTS (hardware) flow control and also ensures that your modem is set
  58. for RTS/CTS too.  You can also explicitly issue the "set flow rts/cts"
  59. command (but then you also must ensure that your modem is configured
  60. accordingly).
  61.  
  62. Having said all that, however, I have to tell you that Ultrix does not support
  63. RTS/CTS flow control.  But (again, as explained in the manual) when using
  64. speed buffering you MUST have an effective means of flow control BETWEEN THE
  65. COMPUTER AND THE MODEM -- as opposed to end-to-end.  Your only choice (unless
  66. somebody else knows something about Ultrix that I don't know) would appear to
  67. be Xon/Xoff "software" flow control.  Of course, this prevents you from using
  68. Xon (Ctrl-Q) and Xoff (Ctrl-S) as data characters on your connection.  To
  69. set this up with C-Kermit 6.0:
  70.  
  71.   set modem type ppi  ; your modem type
  72.   set line /dev/tty00 ; your communication device
  73.   set speed 38400     ; highest speed offered by Ultrix
  74.   set flow xon/xoff   ; flow control to be used by Ultrix
  75.  
  76. prior to dialing.  Giving the "set flow" command after the "set modem
  77. type" command overrides any mistakes that Kermit might make (hopefully
  78. none!) in choosing the appropriate flow control for this particular
  79. combination of platform and modem.
  80.  
  81. Again, it's all explained in the manual.
  82.  
  83. - Frank